crypto/md5.digest.s (field)

25 uses

	crypto/md5 (current package)
		md5.go#L40: 	s   [4]uint32
		md5.go#L47: 	d.s[0] = init0
		md5.go#L48: 	d.s[1] = init1
		md5.go#L49: 	d.s[2] = init2
		md5.go#L50: 	d.s[3] = init3
		md5.go#L66: 	b = byteorder.BEAppendUint32(b, d.s[0])
		md5.go#L67: 	b = byteorder.BEAppendUint32(b, d.s[1])
		md5.go#L68: 	b = byteorder.BEAppendUint32(b, d.s[2])
		md5.go#L69: 	b = byteorder.BEAppendUint32(b, d.s[3])
		md5.go#L84: 	b, d.s[0] = consumeUint32(b)
		md5.go#L85: 	b, d.s[1] = consumeUint32(b)
		md5.go#L86: 	b, d.s[2] = consumeUint32(b)
		md5.go#L87: 	b, d.s[3] = consumeUint32(b)
		md5.go#L182: 	byteorder.LEPutUint32(digest[0:], d.s[0])
		md5.go#L183: 	byteorder.LEPutUint32(digest[4:], d.s[1])
		md5.go#L184: 	byteorder.LEPutUint32(digest[8:], d.s[2])
		md5.go#L185: 	byteorder.LEPutUint32(digest[12:], d.s[3])
		md5block.go#L16: 	a, b, c, d := dig.s[0], dig.s[1], dig.s[2], dig.s[3]
		md5block.go#L124: 	dig.s[0], dig.s[1], dig.s[2], dig.s[3] = a, b, c, d